php get current domain

53

php get current domain -

// Warning: This can be manipulated by hackers!
// If this is problematic, store the domain in a config file

$currentDomain = $_SERVER['SERVER_NAME'];

php get domain from url -

$url = 'http://google.com/dhasjkdas/sadsdds/sdda/sdads.html';
$parse = parse_url($url);
echo $parse['host']; // prints 'google.com'

how to detect intial domain using php\ -

$_SERVER['REQUEST_URI']

Comments

Submit
0 Comments